home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1994 October / Macformat17.cdr / Shareware City / Developers / WASTETCL / C Interfaces / LongCoords.h next >
Encoding:
C/C++ Source or Header  |  1994-05-13  |  685 b   |  37 lines  |  [TEXT/R*ch]

  1. /*
  2.  *    LongCoords.h
  3.  *
  4.  *    C interface to the WASTE text engine:
  5.  *    Long Coordinates
  6.  *
  7.  *    Copyright (c) 1993-1994 Merzwaren
  8.  *    All Rights Reserved
  9.  *
  10.  *  Changes:
  11.  *
  12.  *  Changed LongPoint to LongPt (same as think class libraries)
  13.  *  Put // after endif (SC++ doesn't reconize #endif identifier syntax)
  14.  *  If __LONGCOORDINATES__ is defined (by the Think Class Libraries, the
  15.  *  the definitions are skipped
  16.  * 
  17.  */
  18.  
  19. #ifndef __LONGCOORDINATES__ 
  20. #ifndef _LongCoords_
  21. #define _LongCoords_
  22.  
  23. typedef struct LongPoint {
  24.     long v;
  25.     long h;
  26. } LongPt;
  27.  
  28. typedef struct LongRect {
  29.     long top;
  30.     long left;
  31.     long bottom;
  32.     long right;
  33. } LongRect;
  34.  
  35. #endif // _LongCoords_
  36. #endif // __LONGCOORDINATES__
  37.